home *** CD-ROM | disk | FTP | other *** search
/ Apple Developer Connection Student Program / ADC Tools Sampler CD Disk 3 1999.iso / Metrowerks CodeWarrior / Java Support / Java_Source / Java2 / src / java / security / PublicKey.java < prev    next >
Encoding:
Java Source  |  1999-05-28  |  1.2 KB  |  40 lines  |  [TEXT/CWIE]

  1. /*
  2.  * @(#)PublicKey.java    1.25 98/06/29
  3.  *
  4.  * Copyright 1996-1998 by Sun Microsystems, Inc.,
  5.  * 901 San Antonio Road, Palo Alto, California, 94303, U.S.A.
  6.  * All rights reserved.
  7.  *
  8.  * This software is the confidential and proprietary information
  9.  * of Sun Microsystems, Inc. ("Confidential Information").  You
  10.  * shall not disclose such Confidential Information and shall use
  11.  * it only in accordance with the terms of the license agreement
  12.  * you entered into with Sun.
  13.  */
  14.  
  15. package java.security;
  16.  
  17. /**
  18.  * <p>A public key. This interface contains no methods or constants.
  19.  * It merely serves to group (and provide type safety for) all public key
  20.  * interfaces.
  21.  *
  22.  * Note: The specialized public key interfaces extend this interface.
  23.  * See, for example, the DSAPublicKey interface in
  24.  * <code>java.security.interfaces</code>.
  25.  *
  26.  * @see Key
  27.  * @see PrivateKey
  28.  * @see Certificate
  29.  * @see Signature#initVerify
  30.  * @see java.security.interfaces.DSAPublicKey
  31.  * @see java.security.interfaces.RSAPublicKey
  32.  *
  33.  * @version 1.25 99/03/26
  34.  */
  35.  
  36. public interface PublicKey extends Key {
  37.     // Declare serialVersionUID to be compatible with JDK1.1
  38.     static final long serialVersionUID = 7187392471159151072L;
  39. }
  40.